home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / forms / searchst / testform.frm (.txt) < prev   
Encoding:
Visual Basic Form  |  1994-11-19  |  1.3 KB  |  45 lines

  1. VERSION 2.00
  2. Begin Form TestForm 
  3.    BorderStyle     =   3  'Fixed Double
  4.    Caption         =   "Form2"
  5.    ClientHeight    =   3885
  6.    ClientLeft      =   2115
  7.    ClientTop       =   2805
  8.    ClientWidth     =   6330
  9.    Height          =   4290
  10.    Left            =   2055
  11.    LinkTopic       =   "Form2"
  12.    ScaleHeight     =   3885
  13.    ScaleWidth      =   6330
  14.    Top             =   2460
  15.    Width           =   6450
  16.    Begin CommandButton Command2 
  17.       Caption         =   "Quit"
  18.       Height          =   375
  19.       Left            =   4920
  20.       TabIndex        =   2
  21.       Top             =   3360
  22.       Width           =   1335
  23.    End
  24.    Begin CommandButton Command1 
  25.       Caption         =   "Search..."
  26.       Height          =   375
  27.       Left            =   3360
  28.       TabIndex        =   1
  29.       Top             =   3360
  30.       Width           =   1335
  31.    End
  32.    Begin TextBox Text1 
  33.       Height          =   3135
  34.       Left            =   120
  35.       TabIndex        =   0
  36.       Text            =   "Search annd replace annd do whatever annd then be done annd quit."
  37.       Top             =   120
  38.       Width           =   6135
  39.    End
  40. Sub Command1_Click ()
  41. FindAndReplace TestForm.Text1
  42. End Sub
  43. Sub Command2_Click ()
  44. End Sub
  45.